/* Root Variables */
:root {
    --black-primary: #111111;
    --gray-text: #6c757d;

    --secondary-color: #005aa9;
    --primary-color: #f37920;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--black-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: var(--black-primary);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--gray-text);
}

/* Spacing */
.section-padding {
    padding: 100px 0;
}

/* Navbar */
#mainNav {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

#mainNav.scrolled {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.navbar-expand-lg .navbar-nav {
    gap: 20px;
}

.navbar-nav .nav-link {
    color: var(--black-primary);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

.navbar-brand{
    width: 120px;
}

/* Hero Section */
.hero-section {
    height: 600px;
    background-image: url('https://images.unsplash.com/photo-1563807893646-b6598a2b6fdc?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w3Nzg4Nzd8MHwxfHNlYXJjaHwxfHxjb25mZXJlbmNlJTIwc3RhZ2UlMjBhdWRpZW5jZXxlbnwxfHx8fDE3NjI3ODcyMzF8MA&ixlib=rb-4.1.0&q=80&w=1080');
    background-size: cover;
    background-position: center;
    position: relative;
    margin-top: 76px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.2;
    color: #fff;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn-orange {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-orange:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
}

.btn-outline-light:hover {
    background-color: white;
    color: var(--black-primary);
}

/* Cards */
.event-card,
.product-card,
.blog-card,
.feature-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.event-card:hover,
.product-card:hover,
.blog-card:hover,
.feature-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.card-img-wrapper,
.product-img-wrapper,
.blog-img-wrapper {
    overflow: hidden;
    aspect-ratio: 16/10;
}

.product-img-wrapper {
    aspect-ratio: 1/1;
}

.card-img-wrapper img,
.product-img-wrapper img,
.blog-img-wrapper img {
    transition: transform 0.5s ease;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-card:hover .card-img-wrapper img,
.product-card:hover .product-img-wrapper img,
.blog-card:hover .blog-img-wrapper img {
    transform: scale(1.1);
}

.text-orange {
    color: var(--primary-color);
}

/* Gallery */
.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    transition: background 0.3s ease;
}

.gallery-caption {
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    background: rgba(0, 0, 0, 0.6);
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Testimonials */
.bg-orange {
    background-color: var(--primary-color);
}

.testimonial-card {
    border-radius: 12px;
    border: none;
}

.testimonial-card img {
    object-fit: cover;
}

/* Partners */
.partner-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.partner-placeholder {
    width: 140px;
    height: 70px;
    background-color: #e9ecef;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-text);
    font-weight: 600;
}

/* Features */
.feature-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

/* Newsletter Form */
.newsletter-form .form-control {
    border: none;
    height: 60px;
}

.newsletter-form .btn {
    height: 60px;
}

/* Contact Section */
.contact-form .form-control {
    border: 1px solid #dee2e6;
    padding: 1rem 1.5rem;
    font-size: 1rem;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 165, 0, 0.25);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.5rem;
    color: white;
}

.contact-info-item h5 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 50px;
    height: 50px;
    background-color: #f8f9fa;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-text);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.social-icon i {
    font-size: 1.25rem;
}

/* footer css start */
footer {
  color: #fff;
}

footer ul,
footer li{
    padding: 0;
    margin: 0;
    list-style: none;
}

footer p{
    margin: 0;
}

footer a {
  color: #fff;
  text-decoration: none;
}

footer a:hover {
  color: #fff;
}

footer .heading {
  font-size: var(--fs-500);
  font-weight: 600;
  color: #fff;
}

.footer-top {
  background: #484848;
  padding: 40px 0;
}

.footer-top .heading {
  margin-bottom: 20px;
  color: #fff;
}

.footer-top ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-top ul li a {
  font-weight: 400;
}

.footer-top .social ul {
  flex-direction: row;
  align-items: center;
  gap: 14px;
}

.footer-top .social img {
  width: 40px;
}

.footer-top .contact-footer {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-top .contact-footer a {
  display: block;
  padding: 10px 20px;
  background: #fff;
  color: #000;
  border-radius: 10px;
  overflow-wrap: anywhere;
}

.footer-top .contact-footer a span {
  margin-right: 6px;
  font-weight: 600;
  font-size: var(--fs-400);
}

.footer-top ul.columns a {
  position: relative;
}

.footer-top ul.columns a:hover {
  text-decoration: none;
}

.footer-top ul.columns a:before {
  content: "";
  position: absolute;
  width: 0%;
  height: 1px;
  background: #fff;
  bottom: -2px;
  transition: all 0.3s ease-in-out;
}

.footer-top ul.columns a:hover:before {
  width: 100%;
}

.footer-bottom {
  background: #000;
  padding: 40px 0;
}

.footer-bottom a {
  position: relative;
}

.footer-bottom a:before {
  content: "";
  position: absolute;
  width: 0%;
  height: 1px;
  background: #fff;
  bottom: -2px;
  transition: all 0.3s ease-in-out;
}

.footer-bottom a:hover:before {
  width: 100%;
}

.footer-bottom ul {
  display: flex;
  align-items: center;
  gap: 2px 15px;
  flex-flow: wrap;
}

.footer-bottom .credit {
  text-align: end;
  text-align: center;
}

.footer-bottom .credit img {
  width: 120px;
}

.footer-bottom .credit p {
  color: #fff;
  font-size: var(--fs-500);
  font-weight: 600;
  margin-top: 8px;
}

.footer-bottom .visa {
  text-align: center;
}

.footer-bottom .visa img {
  width: 100%;
}

.footer-bottom .copyright {
  display: flex;
  align-items: center;
  font-size: var(--fs-400);
  gap: 2px 15px;
  margin-top: 20px;
  flex-flow: wrap;
}

.footer-bottom .copyright .dot {
  height: 6px;
  width: 6px;
  background: #a8a8a8;
  border-radius: 100%;
}

.footer-bottom .copyright .h-hr {
  height: 16px;
  width: 1px;
  background: #a8a8a8;
}

.footer-bottom .copyright a {
  text-decoration: none;
}

.footer-bottom .main_address {
  margin-top: 10px;
  display: flex;
  align-items: start;
  flex-direction: column;
}

.footer-bottom .main_address span {
  margin-bottom: 6px;
}

.footer-bottom .main_address a {
  font-weight: 400;
}

.footer-bottom .main_address a::before{
    display: none;
}

/* footer css end */

/* Responsive Design */
@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }

    .hero-section {
        height: 500px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Image Loading */
img {
    max-width: 100%;
    height: auto;
}
.contact-link {
    color: #000 !important;
    text-decoration: none !important;
}
.captcha-box {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #f7f9fc;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid #e3e6ed;
}

.captcha-text {
    font-size: 18px;
    /* font-weight: 600; */
    /* color: #333; */
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.captcha-icon {
    font-size: 20px;
    color: #4393d3;
}

.captcha-input {
    height: 45px;
    width: 160px;
    border-radius: 8px;
    padding: 0 12px;
}

.refresh-btn i {
    font-size: 22px;
    color: #4393d3;
    cursor: pointer;
    transition: 0.3s ease;
}

.refresh-btn i:hover {
    transform: rotate(90deg);
    color: #326f9e;
}

/* Responsive */
@media(max-width: 576px) {
    .captcha-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .captcha-input {
        width: 100%;
    }
}
